path/filepath.lazybuf.w (field)
20 uses
path/filepath (current package)
path.go#L29: w int
path.go#L43: if b.w < len(b.path) && b.path[b.w] == c {
path.go#L44: b.w++
path.go#L48: copy(b.buf, b.path[:b.w])
path.go#L50: b.buf[b.w] = c
path.go#L51: b.w++
path.go#L56: b.w += len(prefix)
path.go#L61: return b.volAndPath[:b.volLen+b.w]
path.go#L63: return b.volAndPath[:b.volLen] + string(b.buf[:b.w])
path.go#L136: case out.w > dotdot:
path.go#L138: out.w--
path.go#L139: for out.w > dotdot && !os.IsPathSeparator(out.index(out.w)) {
path.go#L140: out.w--
path.go#L144: if out.w > 0 {
path.go#L149: dotdot = out.w
path.go#L154: if rooted && out.w != 1 || !rooted && out.w != 0 {
path.go#L165: if out.w == 0 {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |